home *** CD-ROM | disk | FTP | other *** search
Text File | 1992-03-04 | 677 b | 30 lines | [TEXT/PJMM] |
- { Globals.p }
-
- unit Globals;
-
- interface
-
- const
- IGNORES = 12;
- VERSION = '1.0.1';
-
- type
- Settings = record
- FCLogPath, BriefPath, BriefName: str255;
- Creator: string[4];
- MFinder, Automatic, DoBriefRept: boolean;
- IgnoreSess: array[1..IGNORES] of integer;
- SpecialSess: integer;
- end;
-
- var
- Defaults: Settings;
- callSymbol, noCallSymbol: char;
- vRefNum, HowManyOmits: integer;
- TitleString, SummaryString, LineTitle, TimeUsedTitle, ConnectionSpeedsTitle: str255;
- RegistrationsTitle, NameCallsTimeTitle, TotalTitle, HeaderFileName, LegendString: str255;
- gSessStart, gCommandLine, gSessionEnd, gAutoRegister: str255;
-
- implementation
-
- end. {Globals}